07c318eab687dfd018fb4edd1435c8ac81b6ba92,src/main/java/com/mycompany/myapp/config/SecurityConfiguration.java,SecurityConfiguration,configure,#HttpSecurity#,78
Before Change
.logoutUrl("/api/logout")
.logoutSuccessHandler(ajaxLogoutSuccessHandler)
.deleteCookies("JSESSIONID")
.permitAll()
.and()
.headers()
.frameOptions()
.disable()
After Change
.deleteCookies("JSESSIONID")
.permitAll()
.and()
.headers()
.frameOptions()
.disable()
.and()
.authorizeRequests()
.antMatchers("/api/register").permitAll()
.antMatchers("/api/activate").permitAll()
.antMatchers("/api/authenticate").permitAll()